/* link.css - 优雅蓝色系文字链接样式 */

a {
  color: #0070c0;             /* 默认蓝色 */
  text-decoration: none;      /* 去掉下划线 */
  font-weight: normal;
  transition: all 0.25s ease;
}

a:hover {
  color: #005999;             /* 鼠标悬停：深蓝色 */
  text-decoration: underline; /* 增加视觉反馈 */
}

a:visited {
  color: #005070;             /* 已访问：深蓝灰蓝色 */
}

a:active {
  color: #888888;             /* 点击时：灰色 */
}
